home *** CD-ROM | disk | FTP | other *** search
- /* SOURCE FILE: TPUT.C */
- /*****************************************************************************/
- /* tput() displays a string at a specified row and column. */
- /*****************************************************************************/
-
- #include <stdio.h>
- #include <stddefs.h>
-
- void tput(row, col, text)
- short row, col; /* cursor location */
- char text[]; /* text to display */
-
- {
- CUR_MV(row, col);
- fputs(text, stderr);
- }